home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 March / PCWorld_2002-03_cd.bin / Software / TemaCD / xteq / setup.exe / {app} / plugins / XQ Norton Speed Disk on Boot.xpl < prev    next >
Text File  |  2001-04-12  |  1KB  |  54 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="5"
  3. "COUNT"="1"
  4. "UIPATH 1"="Startup/Shutdown\Startup\Run on Next Boot"
  5. "NAME"="Run Norton Speed Disk on Next Boot"
  6. "VERSION"="1.21"
  7. "OSVERSION"="111111"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Run Speed Disk on Next Boot"
  10. "DESCRIPTION 1"="Often the Norton Speed Disk operation is continuously interrupted by other disk/program activity."
  11. "DESCRIPTION 2"="Checking the box will cause Speed Disk to start on Bootup; if SD is not desired on boot, it may be stopped after boot."
  12. "DESCRIPTION 3"="NOTE: This plugin is designed to run only on the next restart; whenever you want to run Speed Disk on boot, re-apply the plugin." 
  13. "AUTHOR"="CptSiskoX"
  14. "CONTACTURL"="http://members.fortunecity.com/computingx/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17.  
  18.  
  19. sP="HKLM\Software\Microsoft\Windows\CurrentVersion\RunOnceEx\"
  20. sV1="SpeedDisk\"
  21. v="Title" 'Stg
  22. v1="Flags" 'Dwrd
  23. v2="Cmd" 'Stg
  24.  
  25.  
  26. Sub Plugin_Initialize 
  27. End Sub
  28.  
  29.  
  30. Sub Plugin_CheckData(ElementIndex)
  31. End Sub
  32.  
  33. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  34.   if ElementIndex=1 then
  35.      Call RegWriteValue(sP&v,"SD at Startup",1)
  36.      Call RegWriteValue(sP&v1,"3",2)
  37.        
  38.      if GetWinVer=2 or GetWinVer=4 then 'NT/2k
  39.         Call RegWriteValue(sp&sv1&v2,"SDNTC.EXE",1)
  40.      else
  41.         Call RegWriteValue(sp&sv1&v2,"SD32",1)
  42.      end if
  43.  
  44.      Call Restart()
  45.   end if
  46. End Sub
  47.  
  48. Sub Plugin_Terminate 
  49. End Sub
  50.  
  51.  
  52.  
  53.  
  54.